home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / diskquot.non < prev    next >
Text File  |  1993-08-11  |  786b  |  28 lines

  1. #if defined(USE_QUOTAS)
  2.  
  3. /*----------------------------------------------------------------------
  4.    This system doesn't have disk quotas.
  5.    Return space left in disk quota on file system which given path is in.
  6.  
  7.     Args: path - Path name of file or directory on file system of concern
  8.           over - pointer to flag that is set if the user is over quota
  9.  
  10.  Returns: If *over = 0, the number of bytes free in disk quota as per
  11.           the soft limit.
  12.       If *over = 1, the number of bytes *over* quota.
  13.           -1 is returned on an error looking up quota
  14.            0 is returned if there is no quota
  15.  
  16. BUG:  If there's more than 2.1Gb free this function will break
  17.   ----*/
  18. long
  19. disk_quota(path, over)
  20.     char *path;
  21.     int  *over;
  22. {
  23.     return(0L);
  24. }
  25. #endif /* USE_QUOTAS */
  26.  
  27.  
  28.